Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click

   Dim ws As New ServiceReference.HelloCustomerClient()
   Dim myCustomer As New ServiceReference.Customer()

   myCustomer.Firstname = "Bill"
   myCustomer.Lastname = "Evjen"

   Response.Write(ws.HelloFullName(myCustomer))

   ws.Close()
End Sub
